ASSIGNMENT( = ) Interface

public interface ASSIGNMENT( = )

Module Procedures

private subroutine TimeToString(string, time)

Converts the value of the current DateTime object to its equivalent string representation

Arguments

Type IntentOptional Attributes Name
character(len=timeStringLength), intent(out) :: string
type(DateTime), intent(in) :: time

private subroutine Parse(time, string)

Converts the specified string representation of a date and time to its DateTime equivalent.

Arguments

Type IntentOptional Attributes Name
type(DateTime), intent(out) :: time
character(len=timeStringLength), intent(in) :: string

private subroutine Copy(time2, time1)

Create an exact copy of DateTime

Arguments

Type IntentOptional Attributes Name
type(DateTime), intent(out) :: time2
type(DateTime), intent(in) :: time1